0c257f80cc10ab8ca1912791ccbf39b72ddc315d,imagegroupview/src/main/java/com/loopeer/android/librarys/imagegroupview/activity/AlbumActivity.java,AlbumActivity,onPostCreate,#Bundle#,138
Before Change
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
getSupportLoaderManager().initLoader(LOADER_ID_FOLDER, null, this);
}
private void updateContentView(ImageFolder floder) {
After Change
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
if (mAlbumType != TAKE_PHOTO) getSupportLoaderManager().initLoader(LOADER_ID_FOLDER, null, this);
}
private void updateContentView(ImageFolder floder) {